home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / ctoolwrk.lbr / WFILE.C < prev    next >
Text File  |  1985-09-27  |  256b  |  18 lines

  1. /* this is 'wfile.c' -- a program to write into a file */
  2.  
  3. #include a:printf.c
  4.  
  5. main()
  6.  
  7. {
  8.  
  9. fopen("file","w");
  10.  
  11.      {
  12.      fprintf(1,"Write this note\nin a file named 'file'.");
  13.      }
  14.  
  15.  
  16. fclose(1);
  17.  
  18. }